Tables [dbo].[History]
Properties
PropertyValue
Created10:31:24 AM Tuesday, March 02, 2010
Last Modified11:40:03 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_History: HistoryIDHistoryIDint4
No
1 - 1
EventDatedatetime8
No
IPvarchar(128)128
Yes
Descriptionvarchar(1024)1024
No
EventTypevarchar(256)256
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_History: HistoryIDPK_HistoryHistoryID
Yes
SQL Script
CREATE TABLE [dbo].[History]
(
[HistoryID] [int] NOT NULL IDENTITY(1, 1),
[EventDate] [datetime] NOT NULL,
[IP] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Description] [varchar] (1024) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[EventType] [varchar] (256) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[History] ADD CONSTRAINT [PK_History] PRIMARY KEY CLUSTERED ([HistoryID]) ON [PRIMARY]
GO
Uses
Used By